home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Apple Reference & Presen…rary 6 (Reseller Edition)
/
Apple Ref. & Pres. Lib.v6.0.toast
/
pc
/
3-Presentations
/
Markets
/
Education
/
HyperCard In Education
/
Flexible Writing Planner
/
card_4482.txt
< prev
next >
Wrap
Text File
|
1990-04-02
|
27KB
|
1,711 lines
-- card: 4482 from stack: in
-- bmap block id: 10132
-- flags: 0000
-- background id: 2602
-- name: student data
----- HyperTalk script -----
on idle
--set scroll of cd fld "line numbers" to targetScrl
set scroll of cd fld "session dates" to scroll of cd fld "line numbers"
set scroll of cd fld "beginning times" to scroll of cd fld "line numbers"
set scroll of cd fld "card names" to scroll of cd fld "line numbers"
set scroll of cd fld "working seconds" to scroll of cd fld "line numbers"
set scroll of cd fld "pausing seconds" to scroll of cd fld "line numbers"
end idle
on openCard
send openCard to this bg
set locktext of background field "topic" to false
unHilite
end openCard
on closeCard
send closeCard to this bg
set locktext of background field "topic" to true
if visible of cd fld "print" is true
then send mouseup to cd btn id 52
end closeCard
-- part 11 (field)
-- low flags: 01
-- high flags: 0000
-- rect: left=19 top=71 right=93 bottom=473
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 3
-- text size: 10
-- style flags: 256
-- line height: 10
-- part name:
-- part 20 (button)
-- low flags: 00
-- high flags: A002
-- rect: left=297 top=260 right=273 bottom=367
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 3
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: Clear Data
----- HyperTalk script -----
on mouseUp
answer "This will empty the data fields." with "OK" or "Cancel"
if it is "cancel" then exit mouseup
else
put empty into cd fld "session dates"
put empty into cd fld "beginning times"
put empty into cd fld "card names"
put empty into cd fld "working seconds"
put empty into cd fld "pausing seconds"
send mouseUp to cd btn id 27
end if
end mouseUp
-- part 27 (button)
-- low flags: 00
-- high flags: A002
-- rect: left=371 top=260 right=273 bottom=458
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 3
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: Set Fields to Top
----- HyperTalk script -----
on mouseUp
set scroll of cd fld "session dates" to 0
set scroll of cd fld "beginning times" to 0
set scroll of cd fld "card names" to 0
set scroll of cd fld "working seconds" to 0
set scroll of cd fld "pausing seconds" to 0
set scroll of cd fld "line numbers" to 0
end mouseUp
-- part 29 (button)
-- low flags: 00
-- high flags: A002
-- rect: left=297 top=275 right=288 bottom=458
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 3
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: Convert seconds to min:sec
----- HyperTalk script -----
on mouseUp
repeat with i = 1 to the number of lines of card field "working seconds"
set cursor to busy
get line i of card field "working seconds"
if it contains ":" then next repeat
else if it is not empty then
put it into begSec
put it into temp
divide temp by 60
put trunc(temp) into temp
put temp into theMinutes
multiply temp by 60
subtract temp from begSec
put begSec into theSeconds
if theSeconds < 10 then put "0" before theSeconds
if theMinutes < 10 then put "0" before theMinutes
put theMinutes&":"&theSeconds into theTime
put theTime into line i of card field "working seconds"
end if
end repeat
repeat with i = 1 to the number of lines of card field "pausing seconds"
set cursor to busy
get line i of card field "pausing seconds"
if it contains ":" then next repeat
else if it is not empty then
put it into begSec
put it into temp
divide temp by 60
put trunc(temp) into temp
put temp into theMinutes
multiply temp by 60
subtract temp from begSec
put begSec into theSeconds
if theSeconds < 10 then put "0" before theSeconds
if theMinutes < 10 then put "0" before theMinutes
put theMinutes&":"&theSeconds into theTime
put theTime into line i of card field "pausing seconds"
end if
end repeat
end mouseUp
-- part 31 (button)
-- low flags: 00
-- high flags: 2000
-- rect: left=264 top=8 right=37 bottom=312
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: Save this topic->
----- HyperTalk script -----
on mouseUp
global topic
set cursor to watch
put background field "topic" of card "student data" into topic
get the number of cards in background "planners"
repeat with i = 1 to it
set cursor to busy
put topic into background field "topic" of card i of background "planners"
end repeat
end mouseUp
-- part 32 (button)
-- low flags: 00
-- high flags: C002
-- rect: left=40 top=260 right=273 bottom=178
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 3
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: Student recording is: ON
----- HyperTalk script -----
on mouseUp
global begSec
if the short name of target contains " on"
then
set name of target to "Student recording is: OFF"
set hilite of target to false
else
set name of target to "Student recording is: ON"
set hilite of target to true
put the seconds into begSec
end if
end mouseUp
-- part 34 (field)
-- low flags: 00
-- high flags: 0000
-- rect: left=47 top=47 right=65 bottom=219
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 3
-- text size: 10
-- style flags: 256
-- line height: 13
-- part name: name
-- part 35 (button)
-- low flags: 00
-- high flags: A000
-- rect: left=371 top=296 right=342 bottom=409
-- title width / last selected line: 0
-- icon id / first selected line: 1008 / 1008
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: Print
----- HyperTalk script -----
on mouseUp
answer "Are sure you want to print?" with "OK" or "Cancel"
if it is "cancel" then exit mouseup
set cursor to watch
lock screen
send mouseup to cd btn id 29
show cd fld "heading"
show cd fld "heading.2"
show cd fld "print"
show cd fld "print.2"
put empty into cd fld "print"
put empty into cd fld "print.2"
set scroll of cd fld "print" to 0
set scroll of cd fld "print.2" to 0
put "Student: "&cd fld "name" into line 3 of cd fld heading
put " Date: "&the long date into line 4 of cd fld heading
put " Class: "&cd fld "class" into line 5 of cd fld heading
put " Topic: "&bg fld "topic" into line 6 of cd fld heading
repeat with i = 1 to the number of lines of cd fld "card names"
if i>50 then put "print.2" into printFld
else put "print" into printFld
put "Working on line "&i&" of "&the number of lines of cd fld "card names"&"."
set cursor to busy
repeat with h = 3 to 8
set cursor to busy
if h is 4 or h is 5 then put 11 into width
if h is 7 or h is 8 then put 10 into width
if h is 6 then put 22 into width
if h is 3 then put 5 into width
put line i of cd fld h into temp
get the number of chars of temp
subtract it from width
repeat with j = 1 to width
put " " after temp
end repeat
put temp after line i of cd fld printFld
end repeat
put return after cd fld printFld
end repeat
--•deletes blank lines of cd fld "print.2"
if cd fld "print.2" is not empty then
repeat with m = 1 to (the number of lines of cd fld "print.2")-1
set cursor to busy
get the number of chars of line m of cd fld "print.2"
if it is 0 then delete line 1 of cd fld "print.2"
end repeat
end if
--•puts heading into print flds
put cd fld "heading"&return before cd fld "print"
if cd fld "print.2" is not empty then
put "Student: "&cd fld "name" into line 3 of cd fld "heading.2"
put cd fld "heading.2"&return before cd fld "print.2"
end if
answer "Be sure the printer is ready." with "Print" or "Cancel"
if it is "cancel" then
send mouseup to cd btn "print fields"
hide msg
exit mouseup
end if
select text of cd fld "print"
type "c" with commandKey
printClip
if cd fld "print.2" is not empty then
select text of cd fld "print.2"
type "c" with commandKey
printClip
end if
send mouseup to cd btn "print fields"
hide msg
end mouseUp
-- part 40 (button)
-- low flags: 00
-- high flags: A002
-- rect: left=196 top=260 right=273 bottom=291
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 3
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: lock/unlock fields
----- HyperTalk script -----
on mouseUp
repeat with i = 1 to the number of cd flds
set the locktext of cd fld i to not the locktext of cd fld i
end repeat
set the locktext of cd fld "line numbers" to true
set the locktext of cd fld id 56 to true
set the locktext of cd fld id 55 to true
set the locktext of cd fld "name" to false
set the locktext of cd fld "class" to false
end mouseUp
-- part 23 (field)
-- low flags: 01
-- high flags: 0007
-- rect: left=19 top=92 right=256 bottom=483
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: Line Numbers
----- HyperTalk script -----
on mouseDown
if target is empty then exit mousedown
global txtline
--This script does not work with a field that has "wide margins" or
--a text line that wraps.
put item 2 of the clickloc into where
put (item 1 of rect of target) +1 into fldlft
put (item 3 of rect of target) -17 into fldRght
put item 2 of rect of target into fldTop
put item 4 of rect of target into fldBotm
put textHeight of target into txtHght
put round (txtHght/2) into hlfTxtHght
put round ((fldBotm-fldTop) / txtHght) into noOfLines
put round ((where-fldTop+hlfTxtHght)/txtHght) into lineNum
put round (the scroll of target/txtHght)+lineNum into txtLine
if line txtline of cd fld "card names" is empty then exit mouseDown
if lineNum < 1 or lineNum > noOfLines then exit mouseDown
set rect of cd btn "hilited" to fldLft,fldTop,fldRght,fldTop+txtHght
put round (fldLft + (fldRght-fldLft)/2) into x
put round (fldTop + (lineNum*txtHght)-hlfTxtHght+1) into y
set loc of cd btn "hilited" to x,y
set hilite of cd btn "hilited" to true
show cd btn "hilited"
pass mouseDown
end mouseDown
on mouseup
--set cursor to watch
global txtLine
if line txtline of cd fld "card names" is empty then
hide cd btn "hilited"
exit mouseup
end if
answer "Are you sure you want to DELETE line ""e&txtline"e &"?" with "OK" or "Cancel"
if it is "cancel" then
hide cd btn "hilited"
exit mouseup
else
delete line txtline of cd fld "session dates"
delete line txtline of cd fld "beginning times"
delete line txtline of cd fld "card names"
delete line txtline of cd fld "working seconds"
delete line txtline of cd fld "pausing seconds"
hide cd btn "hilited"
end if
end mouseup
-- part 41 (field)
-- low flags: 01
-- high flags: 0007
-- rect: left=45 top=92 right=256 bottom=127
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: session dates
----- HyperTalk script -----
on mouseup
send mouseup to cd fld "line numbers"
end mouseup
on mousedown
send mousedown to cd fld "line numbers"
end mousedown
-- part 42 (field)
-- low flags: 01
-- high flags: 0007
-- rect: left=110 top=92 right=256 bottom=192
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: beginning times
----- HyperTalk script -----
on mouseup
send mouseup to cd fld "line numbers"
end mouseup
on mousedown
send mousedown to cd fld "line numbers"
end mousedown
-- part 43 (field)
-- low flags: 01
-- high flags: 0007
-- rect: left=175 top=92 right=256 bottom=356
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: card names
----- HyperTalk script -----
on mouseup
send mouseup to cd fld "line numbers"
end mouseup
on mousedown
send mousedown to cd fld "line numbers"
end mousedown
-- part 44 (field)
-- low flags: 01
-- high flags: 0007
-- rect: left=339 top=92 right=256 bottom=411
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: working seconds
----- HyperTalk script -----
on mouseup
send mouseup to cd fld "line numbers"
end mouseup
on mousedown
send mousedown to cd fld "line numbers"
end mousedown
-- part 45 (field)
-- low flags: 01
-- high flags: 0007
-- rect: left=394 top=92 right=256 bottom=466
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: pausing seconds
----- HyperTalk script -----
on mouseup
send mouseup to cd fld "line numbers"
end mouseup
on mousedown
send mousedown to cd fld "line numbers"
end mousedown
-- part 46 (button)
-- low flags: 00
-- high flags: 0001
-- rect: left=449 top=93 right=255 bottom=466
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name:
-- part 49 (button)
-- low flags: 80
-- high flags: 4000
-- rect: left=20 top=225 right=237 bottom=466
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: hilited
----- HyperTalk script -----
on mouseUp
send mouseup to cd fld "line numbers"
end mouseUp
-- part 50 (field)
-- low flags: 80
-- high flags: 0007
-- rect: left=19 top=90 right=182 bottom=483
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 9
-- part name: print
----- HyperTalk script -----
on mouseup
send mouseup to cd btn id 52
end mouseup
-- part 52 (button)
-- low flags: 00
-- high flags: 0000
-- rect: left=0 top=278 right=290 bottom=12
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 0
-- text size: 12
-- style flags: 0
-- line height: 16
-- part name: print fields
----- HyperTalk script -----
on mouseUp
lock screen
set visible of cd fld "print" to not visible of cd fld "print"
set visible of cd fld "print.2" to not visible of cd fld "print.2"
set visible of cd fld "heading" to not visible of cd fld "heading"
set visible of cd fld "heading.2" to not visible of cd fld "heading.2"
unlock screen with visual dissolve
end mouseUp
-- part 55 (field)
-- low flags: 01
-- high flags: 0000
-- rect: left=6 top=47 right=65 bottom=48
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 65535
-- font id: 3
-- text size: 10
-- style flags: 256
-- line height: 13
-- part name:
-- part 56 (field)
-- low flags: 01
-- high flags: 0000
-- rect: left=226 top=47 right=65 bottom=268
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 65535
-- font id: 3
-- text size: 10
-- style flags: 256
-- line height: 13
-- part name:
-- part 57 (field)
-- low flags: 00
-- high flags: 0000
-- rect: left=267 top=49 right=72 bottom=507
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 3
-- text size: 10
-- style flags: 256
-- line height: 10
-- part name: Class
-- part 65 (button)
-- low flags: 00
-- high flags: A002
-- rect: left=196 top=275 right=288 bottom=291
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 1
-- font id: 3
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: Export Data
----- HyperTalk script -----
on mouseUp
answer "Are sure you want to export this data?" with "OK" or "Cancel"
if it is "cancel" then exit mouseup
set cursor to watch
put empty into cd fld "export"
lock screen
--send mouseup to cd btn id 29 --•convert secs to min:sec
repeat with i = 1 to the number of lines of cd fld "card names"
set cursor to busy
put "Working on line "&i&" of "&the number of lines of cd fld "card names"&"."
repeat with h = 3 to 8
set cursor to busy
put line i of cd fld h into temp
put temp&tab after line i of cd fld "export"
end repeat
put return after cd fld "export"
end repeat
put cd fld "name" into StudentName
put NewFileName("Student File Name",StudentName) into exportFile
if exportFile is empty then exit mouseup
open file studentName
write cd fld "export" to file studentName
close file studentName
hide msg
end mouseUp
-- part 53 (field)
-- low flags: 80
-- high flags: 0002
-- rect: left=19 top=0 right=91 bottom=483
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 9
-- part name: heading
----- HyperTalk script -----
on mouseup
send mouseup to cd btn id 52
end mouseup
-- part 58 (field)
-- low flags: 81
-- high flags: 0007
-- rect: left=19 top=238 right=330 bottom=483
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 9
-- part name: print.2
----- HyperTalk script -----
on mouseup
send mouseup to cd btn id 52
end mouseup
-- part 60 (field)
-- low flags: 81
-- high flags: 0002
-- rect: left=19 top=181 right=238 bottom=483
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 4
-- text size: 9
-- style flags: 0
-- line height: 9
-- part name: heading.2
----- HyperTalk script -----
on mouseup
send mouseup to cd btn id 52
end mouseup
-- part 63 (field)
-- low flags: 80
-- high flags: 0007
-- rect: left=6 top=172 right=273 bottom=296
-- title width / last selected line: 0
-- icon id / first selected line: 0 / 0
-- text alignment: 0
-- font id: 3
-- text size: 9
-- style flags: 0
-- line height: 12
-- part name: export
-- part contents for card part 23
----- text -----
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
-- part contents for background part 19
----- text -----
Indians of NorthWest USA
-- part contents for card part 11
----- text -----
Beginning Work Pause
No. Date Time Card Time Time
-- part contents for card part 53
----- text -----
- S T U D E N T D A T A -
Student: Mary
Date: Friday, December 9, 1988
Class: Class, Teacher
Topic: Indians
Topic: No topic has been entered. See your teacher.
================================================================
No. Date Time Card Work Pause
================================================================
-- part contents for card part 55
----- text -----
Name:
-- part contents for card part 56
----- text -----
Class:
-- part contents for card part 57
----- text -----
Class, Teacher
-- part contents for card part 60
----- text -----
- 2 -
Student:
================================================================
No. Date Time Card Work Pause
================================================================
-- part contents for card part 41
----- text -----
12/9/88
1/6/89
2/2/89
2/2/89
2/20/89
2/21/89
2/22/89
2/22/89
3/24/89
3/24/89
3/24/89
3/24/89
3/24/89
11/30/89
11/30/89
2/20/90
-- part contents for card part 42
----- text -----
5:17 PM
7:11 PM
9:30 PM
9:33 PM
3:50 PM
9:18 PM
2:04 PM
2:43 PM
10:28 AM
10:29 AM
10:29 AM
3:24 PM
3:25 PM
1:53 PM
1:54 PM
9:03 PM
-- part contents for card part 44
----- text -----
00:45
00:19
05:16
02:19
01:36
00:09
00:13
01:28
00:19
00:14
00:10
00:09
01:53
05:49
00:02
00:02
00:01
73:13
78:48
00:11
00:29
00:34
02:13
00:07
00:08
00:01
00:16
00:02
00:11
01:09
00:34
00:04
03:08
00:02
06:47
00:33
00:08
00:09
00:09
02:05
00:53
01:20
00:02
16:47
00:00
01:18
00:42
00:04
00:01
00:02
00:07
00:09
00:02
00:01
00:01
00:01
00:26
00:02
00:02
00:07
87
3
15
41
3
0
1
2
0
1
0
0
3
32
2
1
1
1
1
0
0
2
1
3
5
2
53
0
0
0
1
0
0
0
4
1
1
2
0
0
1
1
7
-- part contents for card part 43
----- text -----
student data
audience/purpose
Organize Ideas
Pausing
Organize Ideas
essay
alike/different
audience/purpose
Pausing
student data
student data
audience/purpose
alike/different
list ideas
Organize Ideas
student data
list ideas
audience/purpose
alike/different
Organize Ideas
Organize Ideas
help
Organize Ideas
Organize Ideas
Organize Ideas
student data
help
student data
Organize Ideas
alike/different
Organize Ideas
student data
help
student data
Pausing
student data
help
student data
student data
audience/purpose
alike/different
list ideas
Organize Ideas
essay
Pausing
student data
audience/purpose
Organize Ideas
alike/different
Organize Ideas
student data
Organize Ideas
alike/different
Organize Ideas
student data
Organize Ideas
essay
alike/different
list ideas
audience/purpose
essay
list ideas
audience/purpose
list ideas
student data
audience/purpose
student data
audience/purpose
list ideas
alike/different
Organize Ideas
essay
Organize Ideas
alike/different
list ideas
audience/purpose
essay
student data
Organize Ideas
alike/different
Organize Ideas
list ideas
audience/purpose
essay
alike/different
student data
help
audience/purpose
list ideas
audience/purpose
audience/purpose
list ideas
alike/different
Organize Ideas
Organize Ideas
essay
Pausing
help
student data
student data
help
Pausing
essay
Organize Ideas
Organize Ideas
alike/different
list ideas
audience/purpose
Pausing
student data
-- part contents for card part 45
----- text -----
02:07
00:13
00:07
00:30
0
0
1
-- part contents for card part 50
----- text -----
- S T U D E N T D A T A -
Student: Mary
Date: Friday, December 9, 1988
Class: Class, Teacher
Topic: Indians
Topic: No topic has been entered. See your teacher.
================================================================
No. Date Time Card Work Pause
================================================================
1 12/9/88 5:17 PM student data 00:45
2 audience/purpose 00:19
3 Organize Ideas 05:16
4 Pausing 02:07
5 Organize Ideas 02:19
6 list ideas 00:11
7 essay 01:36
8 alike/different 00:09
9 audience/purpose 00:13
-- part contents for card part 63
----- text -----
1 12/9/88 5:17 PM student data 00:45
2 audience/purpose 00:19
3 Organize Ideas 05:16
4 Pausing 02:07
5 Organize Ideas 02:19
6 essay 01:36
7 alike/different 00:09
8 audience/purpose 00:13
9 Pausing 00:13
10 student data 01:28
11 1/6/89 7:11 PM student data 00:19
12 audience/purpose 00:14
13 alike/different 00:10
14 list ideas 00:09
15 Organize Ideas 01:53
16 student data 05:49
17 2/2/89 9:30 PM list ideas 00:02
18 audience/purpose 00:02
19 alike/different 00:01
20 2/2/89 9:33 PM Organize Ideas 73:13
21 Organize Ideas 78:48
22 help 00:11
23 Organize Ideas 00:29
24 Organize Ideas 00:34
25 Organize Ideas 02:13
26 student data 00:07
27 help 00:08
28 student data 00:01
29 Organize Ideas 00:16
30 alike/different 00:02
31 Organize Ideas 00:11
32 2/20/89 3:50 PM student data 01:09
33 help 00:34
34 student data 00:04
35 Pausing 00:07
36 student data 03:08
37 help 00:02
38 student data 06:47
39 2/21/89 9:18 PM student data 00:33
40 audience/purpose 00:08
41 alike/different 00:09
42 list ideas 00:09
43 Organize Ideas 02:05
44 essay 00:53
45 Pausing 00:30
46 2/22/89 2:04 PM student data 01:20
47 audience/purpose 00:02
48 Organize Ideas 16:47
49 alike/different 00:00
50 Organize Ideas 01:18
51 student data 00:42
52 Organize Ideas 00:04
53 alike/different 00:01
54 Organize Ideas 00:02
55 student data 00:07
56 Organize Ideas 00:09
57 essay 00:02
58 alike/different 00:01
59 list ideas 00:01
60 audience/purpose 00:01
61 essay 00:26
62 list ideas 00:02
63 audience/purpose 00:02
64 list ideas 00:07